actions-setup/tsconfig.json

16 lines
325 B
JSON
Raw Permalink Normal View History

2022-03-27 19:48:50 -07:00
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
2024-03-27 14:18:22 -04:00
"types": ["vitest/globals"],
"outDir": "./lib",
"rootDir": "./src",
"strict": true,
"noImplicitAny": false,
"esModuleInterop": true
2022-03-27 19:48:50 -07:00
},
2024-03-27 14:18:22 -04:00
"include": ["src/**/*"],
"exclude": ["node_modules"]
2022-03-27 19:48:50 -07:00
}