mirror of
https://github.com/HeyPuter/puter.git
synced 2025-12-30 09:40:00 -06:00
21 lines
396 B
JSON
21 lines
396 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "..",
|
|
"target": "es6",
|
|
"module": "es6",
|
|
"moduleResolution": "bundler",
|
|
"outDir": "build",
|
|
"esModuleInterop": true
|
|
|
|
},
|
|
"include": [
|
|
"../**/*.test.mts",
|
|
"../**/*.test.ts",
|
|
"../src/backend/test.setup.mts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|