Vim/tsconfig.json

23 lines
456 B
JSON
Raw Normal View History

{
"compilerOptions": {
"lib": [
"ES2019"
],
"module": "commonjs",
"target": "ES2019",
"outDir": "out",
"noImplicitReturns": true,
2018-02-04 05:19:56 +03:00
"noUnusedLocals": false,
"noUnusedParameters": false,
"suppressImplicitAnyIndexErrors": true,
"sourceMap": true,
"strictNullChecks": true,
"experimentalDecorators": true,
2018-02-01 05:09:51 +03:00
"alwaysStrict": true,
},
"exclude": [
"node_modules",
2018-02-01 05:09:51 +03:00
"!node_modules/@types"
]
}