20 lines
471 B
JSON
20 lines
471 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "esnext",
|
||
|
|
"module": "NodeNext",
|
||
|
|
"sourceMap": true,
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"rootDir": "./",
|
||
|
|
"outDir": "output",
|
||
|
|
"strict": true,
|
||
|
|
"moduleResolution":"nodenext",
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"noImplicitThis": false,
|
||
|
|
"resolveJsonModule":true,
|
||
|
|
"strictNullChecks":false,
|
||
|
|
"noImplicitReturns":false,
|
||
|
|
"skipLibCheck": true
|
||
|
|
},
|
||
|
|
"exclude": ["node_modules"]
|
||
|
|
}
|