* fix: mismatch between model json and path * chore: revert preserve model settings * test: add tests
16 lines
335 B
JSON
16 lines
335 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": false,
|
|
"skipLibCheck": true,
|
|
"rootDir": "./src"
|
|
},
|
|
"include": ["./src"],
|
|
"exclude": ["**/*.test.ts"]
|
|
}
|