mirror of
https://github.com/urbit/shrub.git
synced 2024-12-19 00:13:12 +03:00
25 lines
564 B
JSON
25 lines
564 B
JSON
{
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["node_modules", "dist", "tmp"],
|
|
"compilerOptions": {
|
|
"outDir": "./tmp",
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"lib": ["ESNext", "DOM"],
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"strict": false,
|
|
"pretty": true,
|
|
"noImplicitAny": true,
|
|
"noErrorTruncation": true,
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": ["./node_modules/@types/*", "*"]
|
|
}
|
|
}
|
|
}
|