mirror of
https://github.com/cupcakearmy/occulto.git
synced 2024-11-01 06:04:17 +01:00
17 lines
1.0 KiB
JSON
17 lines
1.0 KiB
JSON
{
|
|
"extends": ["@tsconfig/strictest"],
|
|
"compilerOptions": {
|
|
"target": "es2020" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
|
|
"module": "ES2015" /* Specify what module code is generated. */,
|
|
"rootDir": "./src" /* Specify the root folder within your source files. */,
|
|
"moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */,
|
|
"declaration": true /* Generate .d.ts files from TypeScript and JavaScript files in your project. */,
|
|
"declarationMap": true /* Create sourcemaps for d.ts files. */,
|
|
"sourceMap": true /* Create source map files for emitted JavaScript files. */,
|
|
"outDir": "./dist" /* Specify an output folder for all emitted files. */,
|
|
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
|
|
"isolatedModules": false
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|