20 lines
452 B
JSON
20 lines
452 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es5",
|
||
|
"module": "commonjs",
|
||
|
"lib": ["dom", "esnext"],
|
||
|
"noImplicitAny": true,
|
||
|
"jsx": "preserve",
|
||
|
"sourceMap": true,
|
||
|
"removeComments": true,
|
||
|
"noEmit": true,
|
||
|
"isolatedModules": true,
|
||
|
"strict": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"esModuleInterop": true,
|
||
|
"skipLibCheck": true
|
||
|
},
|
||
|
"include": ["src/**/*"],
|
||
|
"exclude": ["node_modules", "public", ".cache"]
|
||
|
}
|