35 строки
588 B
JSON
35 строки
588 B
JSON
{
|
|
"$schema": "http://json.schemastore.org/tsconfig",
|
|
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "react",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"experimentalDecorators": true,
|
|
"strictNullChecks": true,
|
|
"types": [
|
|
"node"
|
|
],
|
|
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"lib": [
|
|
"es5",
|
|
"es2015.collection",
|
|
"es2015.iterable",
|
|
"es2015.promise"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib"
|
|
]
|
|
}
|