mirror of
https://github.com/graalvm/setup-graalvm.git
synced 2025-02-01 03:37:11 +08:00
17 lines
315 B
JSON
17 lines
315 B
JSON
|
{
|
||
|
"$schema": "https://json.schemastore.org/tsconfig",
|
||
|
"extends": "./tsconfig.base.json",
|
||
|
"compilerOptions": {
|
||
|
"allowJs": true,
|
||
|
"noEmit": true
|
||
|
},
|
||
|
"exclude": ["dist", "node_modules"],
|
||
|
"include": [
|
||
|
"__fixtures__",
|
||
|
"__tests__",
|
||
|
"src",
|
||
|
"eslint.config.mjs",
|
||
|
"jest.config.js"
|
||
|
]
|
||
|
}
|