oak-db/tsconfig.json

32 lines
826 B
JSON

{
"compilerOptions": {
"module": "CommonJS",
"target": "es5",
"declaration": true,
"allowJs": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"strict": true,
"skipLibCheck": true,
"importHelpers": true,
"lib": [
"ES2020",
"DOM"
],
"outDir": "lib", /* Redirect output structure to the directory. */
"rootDir": "src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"types": [
"node",
"mocha"
],
"forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */
"resolveJsonModule": true
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules"
]
}