25 строки
440 B
JSON
25 строки
440 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"moduleResolution": "nodenext",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"strict": false,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": false,
|
|
"removeComments": true,
|
|
"sourceMap": false
|
|
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.test.ts"
|
|
]
|
|
} |