mirror of
https://github.com/anthonyfitzpatrick/manuscript-compiler.git
synced 2026-07-22 08:31:19 +00:00
27 lines
703 B
JSON
27 lines
703 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": { "@/*": ["src/*"] },
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2018",
|
|
"strict": true,
|
|
"allowJs": false,
|
|
"noImplicitAny": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["DOM", "ES2018"]
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|