mirror of
https://github.com/shivammathur/setup-php.git
synced 2026-07-26 18:52:38 +07:00
15 lines
269 B
JSON
15 lines
269 B
JSON
|
|
{
|
||
|
|
"extends": "./tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"isolatedModules": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"rootDir": ".",
|
||
|
|
"types": [
|
||
|
|
"jest",
|
||
|
|
"node"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"exclude": ["lib", "node_modules"],
|
||
|
|
"include": ["__tests__/**/*.ts", "src/**/*.ts"]
|
||
|
|
}
|