You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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/**/*"]
|
|
}
|