28 lines
574 B
JSON
28 lines
574 B
JSON
{
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"target": "es2020",
|
|
"rootDir": ".",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"declaration": true,
|
|
"inlineSources": true,
|
|
"outDir": "./dist",
|
|
"sourceMap": true,
|
|
"stripInternal": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"./tests",
|
|
"./utils.ts"
|
|
],
|
|
"exclude": [
|
|
"**/node_modules"
|
|
]
|
|
}
|