32 lines
663 B
JSON
32 lines
663 B
JSON
{
|
|
"include": ["src/**/*"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"sourceMap": false,
|
|
"noEmit": true,
|
|
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"allowJs": false,
|
|
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"strict": true,
|
|
"isolatedModules": false,
|
|
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"removeComments": false,
|
|
"jsx": "preserve",
|
|
"lib": ["esnext", "dom"],
|
|
"types": ["node"]
|
|
}
|
|
}
|