21 lines
495 B
JSON
21 lines
495 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowImportingTsExtensions": true,
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"lib": ["ES6", "DOM"]
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|