Files
first-interaction/tsconfig.json

12 lines
309 B
JSON
Raw Permalink Normal View History

2019-08-02 17:15:36 +00:00
{
2025-02-19 13:47:20 -05:00
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.base.json",
2019-08-02 17:15:36 +00:00
"compilerOptions": {
2025-02-19 13:47:20 -05:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./dist"
2019-08-02 17:15:36 +00:00
},
2025-02-19 13:47:20 -05:00
"exclude": ["__fixtures__", "__tests__", "coverage", "dist", "node_modules"],
"include": ["src"]
2019-08-02 17:15:36 +00:00
}