setup-graalvm/tsconfig.json

12 lines
309 B
JSON
Raw Normal View History

2022-01-03 08:43:40 +01:00
{
2025-01-21 12:01:43 +01:00
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.base.json",
2022-01-03 08:43:40 +01:00
"compilerOptions": {
2025-01-21 12:01:43 +01:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./dist"
2022-01-03 08:43:40 +01:00
},
2025-01-21 12:01:43 +01:00
"exclude": ["__fixtures__", "__tests__", "coverage", "dist", "node_modules"],
"include": ["src"]
2022-01-03 08:43:40 +01:00
}