22 lines
531 B
JSON
22 lines
531 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "target",
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"lib": ["dom", "es2020"],
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"pretty": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
]
|
|
}
|