21 lines
393 B
JSON
21 lines
393 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"outDir": "./dist",
|
|
"rootDir": "..",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"../shared/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"src/test_*"
|
|
]
|
|
}
|