20 lines
374 B
JSON
20 lines
374 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"outDir": "dist",
|
||
|
"lib": ["ESNext", "DOM"],
|
||
|
"rootDir": ".",
|
||
|
"types": ["jest", "node"],
|
||
|
"target": "es6",
|
||
|
"noEmit": true,
|
||
|
"composite": true,
|
||
|
"moduleResolution": "node",
|
||
|
"skipLibCheck": true
|
||
|
},
|
||
|
"include": [
|
||
|
"./scripts/*.ts",
|
||
|
"./*.compat-test.ts",
|
||
|
"./**/*.compat-test.ts",
|
||
|
"./utils/**/*.ts"
|
||
|
]
|
||
|
}
|