22 строки
403 B
JSON
22 строки
403 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"allowJs": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"moduleResolution": "node",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": false,
|
|
"noImplicitAny": false
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
],
|
|
"types": [
|
|
"node_modules/@types"
|
|
]
|
|
}
|