24 lines
636 B
JSON
24 lines
636 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["ESNext", "DOM"],
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitOverride": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": false,
|
|
"isolatedModules": true,
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"verbatimModuleSyntax": false,
|
|
"paths": {
|
|
"@perf/serializer": ["./plugin/index.ts"],
|
|
}
|
|
},
|
|
"include": ["plugin/**/*.ts", "src/**/*.ts", "test/**/*.ts", "vite.config.ts"],
|
|
}
|