thaldrin/tsconfig.json

36 lines
805 B
JSON

{
"$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,
"experimentalDecorators": true,
"strictBindCallApply": true,
"strictPropertyInitialization": false,
"declaration": false
},
"include": ["**/*"],
"exclude": [
"node_modules",
"build",
"out",
"tmp",
"logs",
"test",
"sample.config.ts"
]
}