mirror of
https://github.com/logos-storage/codex-factory.git
synced 2026-01-02 21:13:09 +00:00
21 lines
534 B
JSON
21 lines
534 B
JSON
{
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist"],
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"typeRoots": ["./src/types", "node_modules/@types"],
|
|
"target": "es2015",
|
|
"rootDirs": ["src"],
|
|
"module": "commonjs",
|
|
"outDir": "dist",
|
|
"resolveJsonModule": true,
|
|
"useDefineForClassFields": true
|
|
},
|
|
}
|