21 lines
430 B
JSON
21 lines
430 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"target": "ES2019",
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["es6", "esnext"],
|
|
"outDir": "dist",
|
|
"checkJs": true,
|
|
"allowJs": true,
|
|
"declarationDir": "@types",
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/back/**/*"]
|
|
}
|