it-fsm/tsconfig.json

28 lines
518 B
JSON
Raw Normal View History

2019-10-11 10:54:07 +03:00
{
"compilerOptions": {
"allowJs": false,
"lib": [
"dom",
"es7"
],
"declaration": true,
"module": "commonjs",
"moduleResolution": "node",
"target": "es6",
"charset": "utf-8",
"pretty": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedParameters": true,
2020-11-06 06:13:43 +03:00
"strict": true,
2019-10-11 10:54:07 +03:00
"strictNullChecks": true,
2019-10-19 20:06:18 +03:00
"esModuleInterop": true,
2020-11-06 06:13:43 +03:00
"rootDir": "src",
"outDir": "target"
2019-10-11 10:54:07 +03:00
},
2020-11-06 06:13:43 +03:00
"include": [
"src"
2019-10-11 10:54:07 +03:00
]
}