25 lines
670 B
JSON
25 lines
670 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"jsx": "react",
|
|
"lib": ["es2022", "dom"],
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"outDir": "lib/",
|
|
"removeComments": true,
|
|
"rootDirs": ["./", "src/"],
|
|
"sourceMap": false,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"target": "es2017"
|
|
},
|
|
"include": ["src"]
|
|
}
|