F95API/tsconfig.json

25 lines
576 B
JSON
Raw Normal View History

2021-02-13 14:11:43 +00:00
{
2021-02-20 17:23:13 +00:00
"compileOnSave": true,
2021-02-13 14:11:43 +00:00
"compilerOptions": {
2021-02-14 11:25:15 +00:00
"experimentalDecorators": true,
2021-02-13 14:11:43 +00:00
"outDir": "./dist",
"allowJs": true,
"module": "commonjs",
2021-02-15 20:34:50 +00:00
"target": "es5",
2021-02-14 11:25:15 +00:00
"moduleResolution": "node",
2021-02-15 20:51:44 +00:00
"esModuleInterop": true,
2021-02-14 11:25:15 +00:00
"allowSyntheticDefaultImports": true,
2021-02-16 10:13:40 +00:00
"incremental": true,
"sourceMap": true,
2021-02-20 17:23:13 +00:00
"alwaysStrict": true,
"declaration": true,
2021-02-13 14:11:43 +00:00
},
2021-02-27 12:35:19 +00:00
"include": [
"./src/**/*.ts"
],
"exclude": [
"./tests/",
"./node_modules/",
"./dist/"
]
2021-02-13 14:11:43 +00:00
}