thaldrin/tsconfig.json

36 lines
805 B
JSON
Raw Permalink Normal View History

2021-01-10 20:33:55 +00:00
{
2021-04-04 15:17:46 +00:00
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"outDir": "./build",
"allowJs": true,
"target": "ESNext",
"baseUrl": "src",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"module": "commonjs",
"paths": {},
"typeRoots": ["./node_modules/@types"],
"inlineSourceMap": true,
"charset": "UTF-8",
"downlevelIteration": true,
"newLine": "lf",
"strict": true,
2021-08-09 14:47:34 +00:00
"experimentalDecorators": true,
2021-04-04 15:17:46 +00:00
"strictBindCallApply": true,
"strictPropertyInitialization": false,
2021-09-11 11:52:35 +00:00
"declaration": false
2021-04-04 15:17:46 +00:00
},
"include": ["**/*"],
2021-04-24 15:42:07 +00:00
"exclude": [
"node_modules",
"build",
"out",
"tmp",
"logs",
"test",
"sample.config.ts"
]
2021-04-04 15:17:46 +00:00
}