thaldrin/tsconfig.json

35 lines
768 B
JSON
Raw 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,
"strictBindCallApply": true,
"strictPropertyInitialization": false,
"declaration": true
},
"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
}