typocomath/tsconfig.json

16 lines
367 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"rootDir": "./src",
"outDir": "./build",
"esModuleInterop": true,
"allowJs": false,
"noImplicitAny": false,
"moduleResolution": "Node",
"plugins": [{
"transform": "./src/plugins/typeInferPlugin.ts",
"type": "raw"
}]
}
}