theatre/compat-tests/tsconfig.json
2023-08-07 15:50:05 +02:00

19 lines
382 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",
"./fixtures/*/*.compat-test.ts",
"./utils/**/*.ts"
]
}