Files
compiler-explorer/tsconfig.backend.json
Matt Godbolt fd3dd917f5 Vitest (#6219)
Port to vitest. Port everything to typescript. Remove chai, mocha and
chai-as-promised. Adds some docs.
2024-03-08 22:25:09 -06:00

18 lines
491 B
JSON

{
"extends": "./tsconfig.base.json",
"files": ["app.ts", "compiler-args-app.ts"],
"include": ["**/*.js", "**/*.ts"],
"exclude": ["out", "test", "etc", "examples", "static", "**/*.d.ts", "cypress"],
"compilerOptions": {
/* Module resolution */
"target": "esnext",
"module": "nodenext",
"moduleResolution": "nodenext",
/* Code generation */
"outDir": "./out/dist",
"typeRoots": ["./node_modules/@types"],
/* Other options */
"allowJs": true
}
}