enso/lib/js/runner/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
740 B
JSON
Raw Normal View History

2023-01-27 03:09:09 +03:00
{
"include": ["src/**/*", "src/**/*.json"],
2023-01-27 03:09:09 +03:00
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": "./src",
2023-02-19 03:37:58 +03:00
"declaration": true,
"declarationMap": true,
2023-01-27 03:09:09 +03:00
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"inlineSourceMap": true,
"lib": ["ES2021", "dom", "DOM.Iterable"],
2023-01-27 03:09:09 +03:00
"module": "ESNext",
"moduleResolution": "Bundler",
"composite": true,
2023-01-27 03:09:09 +03:00
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true,
2023-02-19 03:37:58 +03:00
"outDir": "dist",
2023-01-27 03:09:09 +03:00
"removeComments": true,
"resolveJsonModule": true,
2023-02-19 03:37:58 +03:00
"rootDir": "src",
"skipLibCheck": true,
2023-01-27 03:09:09 +03:00
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
2023-02-19 03:37:58 +03:00
"target": "ES2019"
2023-01-27 03:09:09 +03:00
}
}