mirror of
https://github.com/versia-pub/api.git
synced 2025-12-06 16:38:20 +01:00
27 lines
827 B
JSON
27 lines
827 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"moduleResolution": "Bundler",
|
|
"moduleDetection": "force",
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true,
|
|
"composite": true,
|
|
"strict": true,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"noImplicitAny": true,
|
|
"jsx": "preserve",
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowJs": true,
|
|
"emitDecoratorMetadata": false,
|
|
"experimentalDecorators": true,
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": ["*.ts", "*.d.ts", "**/*.ts", "**/*.d.ts"]
|
|
}
|