mirror of
https://github.com/directus/directus.git
synced 2026-01-15 01:18:03 -05:00
32 lines
799 B
JSON
32 lines
799 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2019",
|
|
"lib": ["ES2019"],
|
|
"module": "ES2015",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"strict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedParameters": true,
|
|
"alwaysStrict": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"resolveJsonModule": false,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"isolatedModules": true,
|
|
"rootDir": "./src"
|
|
},
|
|
"include": ["./src/**/*.ts"]
|
|
}
|