typocomath/tsconfig.json

16 lines
367 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES2022",
"rootDir": "./src",
2023-01-25 13:42:23 +00:00
"outDir": "./build",
"esModuleInterop": true,
"allowJs": false,
"noImplicitAny": false,
"moduleResolution": "Node",
2023-09-01 15:52:44 +00:00
"plugins": [{
"transform": "./src/plugins/typeInferPlugin.ts",
2023-09-01 15:52:44 +00:00
"type": "raw"
}]
}
}