mirror of
https://github.com/ezolenko/rollup-plugin-typescript2.git
synced 2025-12-08 19:06:16 +00:00
23 lines
457 B
JSON
23 lines
457 B
JSON
{
|
|
"extends": "./tsconfig.base",
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "ES2022",
|
|
"sourceMap": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"diagnostics": true,
|
|
"listFiles": true,
|
|
"moduleResolution": "node16",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"strict": true,
|
|
"outDir": "./build",
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": []
|
|
}
|